home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / osr5 / devtools / dejagnu-971222 / usr / local / lib / tclConfig.sh < prev   
Encoding:
Text File  |  1998-03-22  |  4.5 KB  |  117 lines

  1. # tclConfig.sh --
  2. # This shell script (for sh) is generated automatically by Tcl's
  3. # configure script.  It will create shell variables for most of
  4. # the configuration options discovered by the configure script.
  5. # This script is intended to be included by the configure scripts
  6. # for Tcl extensions so that they don't have to figure this all
  7. # out for themselves.
  8. #
  9. # The information in this file is specific to a single platform.
  10. #
  11. # SCCS: @(#) tclConfig.sh.in 1.20 97/07/01 11:40:19
  12.  
  13. # Tcl's version number.
  14. TCL_VERSION='8.0'
  15. TCL_MAJOR_VERSION='8'
  16. TCL_MINOR_VERSION='0'
  17. TCL_PATCH_LEVEL=''
  18.  
  19. # C compiler to use for compilation.
  20. TCL_CC='cc -belf -O -I/usr/local/include'
  21.  
  22. # -D flags for use with the C compiler.
  23. TCL_DEFS=' -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DHAVE_UNISTD_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_TZNAME=1 -DHAVE_TM_TZADJ=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_TIMEZONE_DECL=1 -DSTDC_HEADERS=1 -DHAVE_ST_BLKSIZE=1 -DNO_UNION_WAIT=1 -DNEED_MATHERR=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_SYS_IOCTL_H=1 '
  24.  
  25. # Flag, 1: we built a shared lib, 0 we didn't
  26. TCL_SHARED_BUILD=0
  27.  
  28. # The name of the Tcl library (may be either a .a file or a shared library):
  29. TCL_LIB_FILE=libtcl8.0.a
  30.  
  31. # Additional libraries to use when linking Tcl.
  32. TCL_LIBS='  -lsocket -lm'
  33.  
  34. # Top-level directory in which Tcl's platform-independent files are
  35. # installed.
  36. TCL_PREFIX='/usr/local'
  37.  
  38. # Top-level directory in which Tcl's platform-specific files (e.g.
  39. # executables) are installed.
  40. TCL_EXEC_PREFIX='/usr/local'
  41.  
  42. # Flags to pass to cc when compiling the components of a shared library:
  43. TCL_SHLIB_CFLAGS='-Kpic -belf'
  44.  
  45. # Base command to use for combining object files into a shared library:
  46. TCL_SHLIB_LD='ld -G'
  47.  
  48. # Either '$LIBS' (if dependent libraries should be included when linking
  49. # shared libraries) or an empty string.  See Tcl's configure.in for more
  50. # explanation.
  51. TCL_SHLIB_LD_LIBS=''
  52.  
  53. # Suffix to use for the name of a shared library.
  54. TCL_SHLIB_SUFFIX='.so'
  55.  
  56. # Library file(s) to include in tclsh and other base applications
  57. # in order to provide facilities needed by DLOBJ above.
  58. TCL_DL_LIBS=''
  59.  
  60. # Flags to pass to the compiler when linking object files into
  61. # an executable tclsh or tcltest binary.
  62. TCL_LD_FLAGS='-belf -Wl,-Bexport'
  63.  
  64. # Flags to pass to ld, such as "-R /usr/local/tcl/lib", that tell the
  65. # run-time dynamic linker where to look for shared libraries such as
  66. # libtcl.so.  Used when linking applications.  Only works if there
  67. # is a variable "LIB_RUNTIME_DIR" defined in the Makefile.
  68. TCL_LD_SEARCH_FLAGS=''
  69.  
  70. # Additional object files linked with Tcl to provide compatibility
  71. # with standard facilities from ANSI C or POSIX.
  72. TCL_COMPAT_OBJS=''
  73.  
  74. # Name of the ranlib program to use.
  75. TCL_RANLIB='true'
  76.  
  77. # String to pass to linker to pick up the Tcl library from its
  78. # build directory.
  79. TCL_BUILD_LIB_SPEC='-L/x/rr/src/devtools/dejagnu-971222/tcl/unix -ltcl8.0'
  80.  
  81. # String to pass to linker to pick up the Tcl library from its
  82. # installed directory.
  83. TCL_LIB_SPEC='-L/usr/local/lib -ltcl8.0'
  84.  
  85. # Indicates whether a version numbers should be used in -l switches
  86. # ("ok" means it's safe to use switches like -ltcl7.5;  "nodots" means
  87. # use switches like -ltcl75).  SunOS and FreeBSD require "nodots", for
  88. # example.
  89. TCL_LIB_VERSIONS_OK='ok'
  90.  
  91. # String that can be evaluated to generate the part of a shared library
  92. # name that comes after the "libxxx" (includes version number, if any,
  93. # extension, and anything else needed).  May depend on the variables
  94. # VERSION and SHLIB_SUFFIX.  On most UNIX systems this is
  95. # ${VERSION}${SHLIB_SUFFIX}.
  96. TCL_SHARED_LIB_SUFFIX='${VERSION}${SHLIB_SUFFIX}'
  97.  
  98. # String that can be evaluated to generate the part of an unshared library
  99. # name that comes after the "libxxx" (includes version number, if any,
  100. # extension, and anything else needed).  May depend on the variable
  101. # VERSION.  On most UNIX systems this is ${VERSION}.a.
  102. TCL_UNSHARED_LIB_SUFFIX='${VERSION}.a'
  103.  
  104. # Location of the top-level source directory from which Tcl was built.
  105. # This is the directory that contains a README file as well as
  106. # subdirectories such as generic, unix, etc.  If Tcl was compiled in a
  107. # different place than the directory containing the source files, this
  108. # points to the location of the sources, not the location where Tcl was
  109. # compiled.
  110. TCL_SRC_DIR='/x/rr/src/devtools/dejagnu-971222/tcl'
  111.  
  112. # List of standard directories in which to look for packages during
  113. # "package require" commands.  Contains the "prefix" directory plus also
  114. # the "exec_prefix" directory, if it is different.
  115. TCL_PACKAGE_PATH='/usr/local/lib'
  116.